body {
	background-color: #dddddd;
}

#MainHeading {
	color: rgb(49, 59, 65);
	font-family: 'Shafarik', serif;
	text-align: center;
	font-style: italic;
	
}

p {
	color: rgb(78, 84, 88);
	font-family: 'Shafarik', serif;
	text-align: center;
	
}

.gallery-wrapper {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, #222 30%, #222 70%, rgba(0, 0, 0, 0.7) 100%);
    padding-top: 60px;
    padding-bottom: 60px;
  }

.gallery img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}


.form-container {
    max-width: 600px;
    margin: auto;
    background: #f8f9fa; /* Light grey background */
    border-radius: 12px;
    padding: 30px;
}

h2 {
    color: #222;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-color: #222;
}

.btn-dark {
    background-color: #333;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #000;
}

.form-check-label {
    font-weight: 500;
}


